home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’93 / Windoid / Makefile < prev    next >
Encoding:
Makefile  |  1993-06-18  |  1.4 KB  |  47 lines  |  [TEXT/MPS ]

  1. #------------------------------------------------------------------------
  2. #    Infinity Windoid 2.3
  3. #        makefile for MPW
  4. #
  5. #    © 1991-93 Troy Gaul, 
  6. #      Infinity Systems
  7. #      All Rights Reserved
  8. #------------------------------------------------------------------------
  9. #   File:       Makefile
  10. #   Target:     Infinity Windoid 2.3
  11. #   Sources:    InfinityWindoid.c
  12. #   Created:    Saturday, November 23, 1991 11:06:28 PM
  13. #------------------------------------------------------------------------
  14. Output =    Infinity Windoid 2.3
  15.  
  16. #------------------------------------------------------------------------
  17. Type =        rsrc
  18. Creator =    RSED
  19. ResType =    WDEF
  20. ResID =        128
  21.  
  22. #------------------------------------------------------------------------
  23. COptions =    -r                    # warnings                                 ∂
  24.             -b                    # PC-relative strings                    ∂
  25.             -mbg off             # off, full                                ∂
  26. #            -opt full            # off, (empty)=normal, full, size, speed
  27.  
  28. #------------------------------------------------------------------------
  29. InfinityWindoid.c.o ƒ Makefile InfinityWindoid.c
  30.     C {COptions} InfinityWindoid.c
  31.  
  32. #------------------------------------------------------------------------
  33. Objects = InfinityWindoid.c.o
  34.  
  35. #------------------------------------------------------------------------
  36. "{Output}" ƒƒ Makefile {Objects}
  37.     Link ∂
  38.         -t {Type} ∂
  39.         -c {Creator} ∂
  40.         -rt {ResType}={ResID} ∂
  41.         -m MAIN ∂
  42.         -sg "{Output}" ∂
  43.         -o "{Output}" ∂
  44.         {Objects}
  45.  
  46. #------------------------------------------------------------------------
  47.